From f01178a831da7fbd34ce1fedd9c6ebccbfa5aa94 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Fri, 27 Mar 2026 16:16:29 +0000 Subject: bugfix: forgot to rename the card components --- src/pages/posts/[...slug].astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pages/posts/[...slug].astro') diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index b8e75a2..e62b109 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -2,7 +2,7 @@ import { getCollection, type CollectionEntry } from "astro:content"; import Layout from "@/layouts/main.astro"; import { buttonVariants } from "@/components/ui/button"; -import PostHeader from "@/components/PostHeader.astro"; +import BlogPostCard "@/components/BlogPostCard.astro"; import OpenRing from "@/components/OpenRing.astro"; export async function getStaticPaths() { @@ -24,7 +24,7 @@ const { Content } = await post.render();
-